From: Jyrki Gadinger Date: Wed, 12 Feb 2025 15:42:30 +0000 (+0100) Subject: fix rounded corners in the call notification X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~2^2~62^2 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=e69881521f282389a75bb953c561ca3f0f2d763c;p=nextcloud-desktop.git fix rounded corners in the call notification also enforce a non-transparent base background colour (e.g. for Win11) Signed-off-by: Jyrki Gadinger --- diff --git a/src/gui/tray/CallNotificationDialog.qml b/src/gui/tray/CallNotificationDialog.qml index 8ab7bc666..305054027 100644 --- a/src/gui/tray/CallNotificationDialog.qml +++ b/src/gui/tray/CallNotificationDialog.qml @@ -24,7 +24,7 @@ import Qt5Compat.GraphicalEffects ApplicationWindow { id: root - color: palette.base + color: "transparent" flags: Qt.Dialog | Qt.FramelessWindowHint | Qt.WindowStaysOnTopHint readonly property int windowSpacing: 10 @@ -89,7 +89,7 @@ ApplicationWindow { width: parent.width height: contentLayout.height + (root.windowSpacing * 2) radius: Systray.useNormalWindow ? 0.0 : Style.trayWindowRadius - color: palette.base + color: Style.colorWithoutTransparency(palette.base) border.width: Style.trayWindowBorderWidth border.color: palette.dark clip: true